home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-11-26 | 761 b | 33 lines | [TEXT/CWIE] |
- // ===========================================================================
- // CActiveXPeriodical.h ©1996 Microsoft Corporation. All rights reserved.
- // ===========================================================================
-
- #ifndef _H_CActiveXPeriodical
- #define _H_CActiveXPeriodical
- #pragma once
-
- #include <LPeriodical.h>
-
- class CActiveXPeriodical :
- public LPeriodical
- {
- public:
- // *** Constructors & Destructors ***
- CActiveXPeriodical(void);
-
- // *** public methods ***
- static void UpdatePeriodical(void);
-
- // *** LPeriodical methods ***
- virtual void SpendTime(const EventRecord &inMacEvent);
-
- private:
- // *** private data ***
-
- static CActiveXPeriodical* sActiveXPeriodical;
-
- Boolean8 mIsIdling;
- Boolean8 mIsRepeating;
- };
-
- #endif